home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1999 #5 / 1999 CD 5 (black).iso / Delphi3 / install / data.z / GRAPHEX.DPR < prev    next >
Encoding:
Text File  |  1997-08-05  |  258 b   |  15 lines

  1. program GraphEx;
  2.  
  3. uses
  4.   Forms,
  5.   GraphWin in 'GraphWin.pas' {Form1},
  6.   BMPDlg in 'BMPDlg.pas' {NewBMPForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.CreateForm(TNewBMPForm, NewBMPForm);
  13.   Application.Run;
  14. end.
  15.